home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1995 April / Internet Tools.iso / security / chrootuid1.2.shar.Z / chrootuid1.2.shar / Makefile < prev    next >
Encoding:
Makefile  |  1993-08-15  |  386 b   |  23 lines

  1. # @(#) Makefile 1.2 93/08/12 16:09:29
  2.  
  3. FILES    = README Makefile chrootuid.c chrootuid.1
  4. CFLAGS    = -O 
  5.  
  6. all:    chrootuid chrootuid.1
  7.  
  8. chrootuid: chrootuid.c
  9.     $(CC) $(CFLAGS) -o $@ $?
  10.  
  11. #chrootuid.1: chrootuid.c
  12. #    srctoman $? >$@
  13.  
  14. shar:    $(FILES)
  15.     @shar $(FILES)
  16.  
  17. install: chrootuid.1 chrootuid
  18.     cp chrootuid /usr/local/bin
  19.     cp chrootuid.1 /usr/local/man/man1
  20.  
  21. clean:
  22.     rm -f *.o core chrootuid
  23.